home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / lan / rpssrv.zip / RP95-DEL.BAT < prev    next >
DOS Batch File  |  1996-05-04  |  929b  |  33 lines

  1. @echo off
  2. if "%1"=="" goto done
  3. if not exist %1\*.* goto done
  4. echo You are about to remove the Remote Process and Shutdown Service
  5. echo from %1.
  6. echo. 
  7. yesno Do you wish to continue with this un-install process
  8. if errorlevel 1 goto YES1
  9. goto DONE
  10. :YES1
  11. echo.
  12. if exist %1\RPSS95.EXE %1\RPSS95 -uninstall
  13. if exist %1\RPSREG.EXE del %1\RPSREG.EXE
  14. if exist %1\RPSC.EXE del %1\RPSC.EXE
  15. if exist %1\*.TXT del %1\*.TXT
  16. if exist %1\*.ICO del %1\*.ICO
  17. if exist %1\RPSS.WRI del %1\RPSS.WRI
  18. if exist %1\RP95-INS.BAT del %1\RP95-INS.BAT
  19. if exist %1\INSTHELP.DLL del %1\INSTHELP.DLL
  20. if exist %1\RPSS95.EXE del %1\RPSS95.EXE
  21. if exist %windir%\SYSTEM\RPSS.CPL del %windir%\SYSTEM\RPSS.CPL
  22. rem deltree /y %1
  23. rd %1
  24. echo.
  25. echo Remote Process and Shutdown Service has been removed.
  26. echo.
  27. echo You will need to manually delete any program groups
  28. echo or icons which relate to this application.
  29. echo.
  30. pause
  31. :done
  32. EXIT
  33.